home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
60
/
60.xpi
/
chrome
/
webdeveloper.jar
/
content
/
webdeveloper
/
common
/
platform.js
< prev
next >
Wrap
Text File
|
2009-06-30
|
562b
|
21 lines
// Returns true if the extension is running on a Mac
function webdeveloper_isMac()
{
var appInfo = Components.classes["@mozilla.org/xre/app-info;1"];
// If app info is set
if(appInfo)
{
// If the OS is set to Darwin
if(appInfo.getService(Components.interfaces.nsIXULRuntime).OS == "Darwin")
{
return true;
}
}
else if(!webdeveloper_isPreferenceSet("general.platform.override") && navigator.platform.indexOf("Mac") == 0)
{
return true;
}
return false;
}